home *** CD-ROM | disk | FTP | other *** search
- package koala.dynamicjava.tree;
-
- import java.util.List;
- import koala.dynamicjava.tree.visitor.Visitor;
-
- public class StaticMethodCall extends MethodCall {
- public static final String METHOD_TYPE = "methodType";
- private ReferenceType methodType;
-
- public ReferenceType getMethodType() {
- return this.methodType;
- }
-
- public void setMethodType(ReferenceType var1) {
- if (var1 == null) {
- throw new IllegalArgumentException("t == null");
- } else {
- ((Node)this).firePropertyChange("methodType", this.methodType, this.methodType = var1);
- }
- }
-
- public Object acceptVisitor(Visitor var1) {
- return var1.visit(this);
- }
-
- public StaticMethodCall(ReferenceType var1, String var2, List var3) {
- this(var1, var2, var3, (String)null, 0, 0, 0, 0);
- }
-
- public StaticMethodCall(ReferenceType var1, String var2, List var3, String var4, int var5, int var6, int var7, int var8) {
- super(var2, var3, var4, var5, var6, var7, var8);
- if (var1 == null) {
- throw new IllegalArgumentException("typ == null");
- } else {
- this.methodType = var1;
- }
- }
- }
-